home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-04 / atre12.zip / ATREEDLL.ZIP / ATREE.MAK < prev    next >
Makefile  |  1991-07-05  |  695b  |  27 lines

  1. #makefile for atree.dll for Windows 3.0
  2. #Should be compiled under the small memory model
  3. #When compiling as .dll, do NOT assume ds=ss
  4.  
  5. CPATH = f:\c
  6. CFLAGS = -ms! -O -G -H -WD
  7. OBJECTS = atree.obj
  8.  
  9. atree.dll : $(OBJECTS) atree.def atree.res
  10.  
  11.             TLINK /v /c /Twd $(CPATH)\lib\C0DS atree.obj,\
  12.                   atree,atree,\
  13.                   $(CPATH)\lib\IMPORT $(CPATH)\lib\CWINC $(CPATH)\lib\cs,\
  14.                   atree.def
  15.  
  16. #            TLINK @atree.rsp
  17.             rc atree.dll
  18.             copy atree.dll c:\windows
  19.  
  20. atree.res : atree.rc atree.ico
  21.         rc -r -i$(CPATH)\include\ atree.rc
  22.  
  23. atree.obj : atree.c atree.h
  24.  
  25. .c.obj:
  26.         BCC $(CFLAGS) -c $<
  27.